home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue25
/
compress
/
COMPRESS.ZIP
/
COMPDEMO.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-07-09
|
265 b
|
15 lines
program Compdemo;
uses
Forms,
COMPMAIN in 'COMPMAIN.PAS' {Form1};
{$R *.RES}
begin
Application.Title := 'TCompress 3.0 Demonstration';
Application.HelpFile := 'COMPRESS.HLP';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.